diff --git a/Assets/Cupid/Scripts/CupidHelpers.cs b/Assets/Cupid/Scripts/CupidHelpers.cs index a1f288c4..3b5bf315 100644 --- a/Assets/Cupid/Scripts/CupidHelpers.cs +++ b/Assets/Cupid/Scripts/CupidHelpers.cs @@ -31,6 +31,12 @@ public static class Cupid public static int RoomPort = -1; + /// Clears auth/matchmaker session fields. Server address is left so the next login can again. + public static void ClearSession() + { + bearerToken = ""; + RoomPort = -1; + } public static async Task Init(string _serverAddress, int _port, string _bearerToken, string _settingsPassword) { diff --git a/Assets/Cupid/Scripts/CupidLobby.cs b/Assets/Cupid/Scripts/CupidLobby.cs index db8f22f5..2e5a8d01 100644 --- a/Assets/Cupid/Scripts/CupidLobby.cs +++ b/Assets/Cupid/Scripts/CupidLobby.cs @@ -51,6 +51,12 @@ public class CupidLobby : MonoBehaviour } public static CupidLobby instance; + + public static void ClearUsername() + { + m_username = ""; + } + void Awake(){ instance=this; } diff --git a/Assets/Cupid/Scripts/Logger.cs b/Assets/Cupid/Scripts/Logger.cs index 21a36a58..3b23337d 100644 --- a/Assets/Cupid/Scripts/Logger.cs +++ b/Assets/Cupid/Scripts/Logger.cs @@ -6,6 +6,8 @@ public class Logger { public static bool Enabled = true; private static Logger m_instance = null; + private static readonly object FileLock = new object(); + private static string ApplicationDirectory { get @@ -18,6 +20,12 @@ public class Logger } string path = Application.dataPath; +#if UNITY_EDITOR + // Never write under Assets/: the Editor importer locks those files, and + // File.AppendAllText then throws Sharing violation. Mirror treats that as a + // fatal RPC error and disconnects the client. + path = Path.GetFullPath(Path.Combine(path, "..")); +#else if (Application.platform == RuntimePlatform.OSXPlayer) { path = Path.Combine(path, "..", ".."); @@ -26,6 +34,7 @@ public class Logger { path = Path.Combine(path, ".."); } +#endif return path; } } @@ -50,14 +59,14 @@ public class Logger if(LogFilePath == null){ LogFilePath = Path.Combine(ApplicationDirectory, "Log.txt"); } - File.WriteAllText(LogFilePath, "Logger initiated at " + DateTime.Now + "\n\n"); + TryWriteFile(LogFilePath, "Logger initiated at " + DateTime.Now + "\n\n", append: false); } public void log(string message){ if(!Enabled){return;} - File.AppendAllText(LogFilePath,$"[{DateTime.Now}] {message}\n"); Debug.Log(message); + TryWriteFile(LogFilePath, $"[{DateTime.Now}] {message}\n", append: true); } public static void Log(string message){ @@ -86,4 +95,44 @@ public class Logger public static void SetFilePath(string path){ instance.LogFilePath= path; } -} \ No newline at end of file + + /// + /// File I/O must never throw: callers include Mirror RPCs, and an exception there + /// disconnects the client. Sharing violations are expected if another process has + /// the file open; FileShare.ReadWrite plus a swallow keeps gameplay alive. + /// + static void TryWriteFile(string path, string contents, bool append) + { + if (string.IsNullOrEmpty(path) || contents == null) + return; + + try + { + string dir = Path.GetDirectoryName(path); + if (!string.IsNullOrEmpty(dir)) + EnsureDirectoryExists(dir); + } + catch (Exception e) + { + Debug.LogWarning("Logger: could not create log directory: " + e.Message); + return; + } + + lock (FileLock) + { + try + { + FileMode mode = append ? FileMode.Append : FileMode.Create; + using (var stream = new FileStream(path, mode, FileAccess.Write, FileShare.ReadWrite)) + using (var writer = new StreamWriter(stream)) + { + writer.Write(contents); + } + } + catch (Exception e) + { + Debug.LogWarning("Logger: file write failed (" + path + "): " + e.Message); + } + } + } +} diff --git a/Assets/Log.txt b/Assets/Log.txt index 33b02deb..5a9dd65f 100644 --- a/Assets/Log.txt +++ b/Assets/Log.txt @@ -1,36 +1,34 @@ -Logger initiated at 8/20/2026 7:16:47 PM +Logger initiated at 8/27/2026 1:43:47 PM -[8/20/2026 7:16:47 PM] Cupid settings updated -[8/20/2026 7:16:47 PM] Cupid settings updated -[8/20/2026 7:16:49 PM] Starting matchmake as warlock -[8/20/2026 7:16:52 PM] Still waiting: {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock","LastSeen":1787233612635,"UserId":2,"l10_wins":4,"l10_losses":5}],"GameName":"soccar","Port":26226,"InitTime":1787233612635,"entry_fee":21,"match_id":566,"rc_prize":34,"your_team":"red"},"for_blue":null} -[8/20/2026 7:16:54 PM] Got into a room -[8/20/2026 7:16:54 PM] {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock","LastSeen":1787233613909,"UserId":2,"l10_wins":4,"l10_losses":5},{"Name":"warlock3","LastSeen":1787233612988,"UserId":6,"l10_wins":1,"l10_losses":9}],"GameName":"soccar","Port":26226,"InitTime":1787233612635,"entry_fee":21,"match_id":566,"instance_started":true,"rc_prize":34,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1787233613909,"UserId":2,"l10_wins":4,"l10_losses":5},{"Name":"warlock3","LastSeen":1787233612988,"UserId":6,"l10_wins":1,"l10_losses":9}],"GameName":"soccar","Port":26226,"InitTime":1787233612635,"entry_fee":21,"match_id":566,"instance_started":true,"rc_prize":34,"your_team":"blue"}} -[8/20/2026 7:16:54 PM] Configured dedicated match reporting for match id 566 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com -[8/20/2026 7:16:54 PM] Setting cupid to load game scene -[8/20/2026 7:16:54 PM] Loading game scene -[8/20/2026 7:17:00 PM] Starting client at $kkapi.playpoolstudios.com:26226 -[8/20/2026 7:17:01 PM] Client connected -[8/20/2026 7:17:01 PM] Dedicated join: team assigned Red isServer=False matchId=566 secretEmpty=False redJoin=False blueJoin=False collected=False -[8/20/2026 7:17:16 PM] Selected team changed from Red to Blue -[8/20/2026 7:17:22 PM] Selected team changed from Blue to Red -[8/20/2026 7:17:33 PM] Selected team changed from Red to Blue -[8/20/2026 7:17:37 PM] Selected team changed from Blue to Red -[8/20/2026 7:17:43 PM] Selected team changed from Red to Blue -[8/20/2026 7:17:49 PM] Selected team changed from Blue to Red -[8/20/2026 7:17:53 PM] Selected team changed from Red to Blue -[8/20/2026 7:17:55 PM] Score changed from 0 to 1 -[8/20/2026 7:17:58 PM] Selected team changed from Blue to Red -[8/20/2026 7:18:03 PM] Selected team changed from Red to Blue -[8/20/2026 7:18:05 PM] Score changed from 1 to 2 -[8/20/2026 7:18:08 PM] Selected team changed from Blue to Red -[8/20/2026 7:18:13 PM] Selected team changed from Red to Blue -[8/20/2026 7:18:17 PM] Score changed from 2 to 3 -[8/20/2026 7:18:48 PM] Client disconnected -[8/20/2026 7:18:53 PM] Cupid settings updated -[8/20/2026 7:18:53 PM] Cupid settings updated -[8/20/2026 7:18:56 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com -[8/20/2026 7:19:02 PM] Starting client at $kkapi.playpoolstudios.com:26226 -[8/20/2026 7:19:02 PM] Client disconnected -[8/20/2026 7:19:02 PM] Mirror server exception logging enabled -[8/20/2026 7:19:02 PM] Game started On localhost, tutorial mode enabled +[8/27/2026 1:43:47 PM] Cupid settings updated +[8/27/2026 1:43:48 PM] Cupid settings updated +[8/27/2026 1:43:50 PM] Starting matchmake as warlock +[8/27/2026 1:43:51 PM] Starting matchmake as warlock2 +[8/27/2026 1:43:53 PM] Still waiting: {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock","LastSeen":1787818433058,"UserId":2,"l10_wins":1,"l10_losses":8}],"GameName":"soccar","Port":26357,"InitTime":1787818433058,"entry_fee":21,"match_id":595,"rc_prize":34,"your_team":"red"},"for_blue":null} +[8/27/2026 1:43:53 PM] Got into a room +[8/27/2026 1:43:53 PM] {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock","LastSeen":1787818433058,"UserId":2,"l10_wins":1,"l10_losses":8},{"Name":"warlock2","LastSeen":1787818433141,"UserId":3,"l10_wins":8,"l10_losses":2}],"GameName":"soccar","Port":26357,"InitTime":1787818433058,"entry_fee":21,"match_id":595,"instance_started":true,"rc_prize":34,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1787818433058,"UserId":2,"l10_wins":1,"l10_losses":8},{"Name":"warlock2","LastSeen":1787818433141,"UserId":3,"l10_wins":8,"l10_losses":2}],"GameName":"soccar","Port":26357,"InitTime":1787818433058,"entry_fee":21,"match_id":595,"instance_started":true,"rc_prize":34,"your_team":"blue"}} +[8/27/2026 1:43:53 PM] Configured dedicated match reporting for match id 595 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/27/2026 1:43:53 PM] Setting cupid to load game scene +[8/27/2026 1:43:53 PM] Loading game scene +[8/27/2026 1:43:54 PM] Got into a room +[8/27/2026 1:43:54 PM] {"ok":true,"entry_fee":21,"rc_prize":34,"for_red":{"Players":[{"Name":"warlock","LastSeen":1787818434370,"UserId":2,"l10_wins":1,"l10_losses":8},{"Name":"warlock2","LastSeen":1787818433141,"UserId":3,"l10_wins":8,"l10_losses":2}],"GameName":"soccar","Port":26357,"InitTime":1787818433058,"entry_fee":21,"match_id":595,"instance_started":true,"rc_prize":34,"your_team":"red"},"for_blue":{"Players":[{"Name":"warlock","LastSeen":1787818434370,"UserId":2,"l10_wins":1,"l10_losses":8},{"Name":"warlock2","LastSeen":1787818433141,"UserId":3,"l10_wins":8,"l10_losses":2}],"GameName":"soccar","Port":26357,"InitTime":1787818433058,"entry_fee":21,"match_id":595,"instance_started":true,"rc_prize":34,"your_team":"blue"}} +[8/27/2026 1:43:54 PM] Configured dedicated match reporting for match id 595 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/27/2026 1:43:54 PM] Setting cupid to load game scene +[8/27/2026 1:43:54 PM] Loading game scene +[8/27/2026 1:43:59 PM] Starting client at $kkapi.playpoolstudios.com:26357 +[8/27/2026 1:43:59 PM] Client connected +[8/27/2026 1:43:59 PM] Dedicated join: team assigned Blue isServer=False matchId=595 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/27/2026 1:44:01 PM] Starting client at $kkapi.playpoolstudios.com:26357 +[8/27/2026 1:44:01 PM] Client connected +[8/27/2026 1:44:01 PM] Dedicated join: team assigned Red isServer=False matchId=595 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/27/2026 1:44:17 PM] Selected team changed from Red to Blue +[8/27/2026 1:44:17 PM] Selected team changed from Red to Blue +[8/27/2026 1:44:26 PM] Selected team changed from Blue to Red +[8/27/2026 1:44:26 PM] Selected team changed from Blue to Red +[8/27/2026 1:45:01 PM] Configured dedicated match reporting for match id 596 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/27/2026 1:45:01 PM] Client disconnected +[8/27/2026 1:45:01 PM] Client disconnected +[8/27/2026 1:45:05 PM] Starting client at $kkapi.playpoolstudios.com:26411 +[8/27/2026 1:45:05 PM] Client connected +[8/27/2026 1:45:05 PM] Dedicated join: team assigned Red isServer=False matchId=596 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/27/2026 1:45:31 PM] Client disconnected diff --git a/Assets/Logs/-1787763110.json b/Assets/Logs/-1787763110.json new file mode 100644 index 00000000..2af56e2a --- /dev/null +++ b/Assets/Logs/-1787763110.json @@ -0,0 +1 @@ +{"version":1,"matchId":-1787763110,"isPractice":true,"fixedDeltaTime":0.019999992102384568,"duration":4.35999870300293,"entities":[{"id":0,"type":"ball","team":""},{"id":1,"type":"puck","team":"Red"},{"id":2,"type":"puck","team":"Red"},{"id":3,"type":"puck","team":"Red"},{"id":4,"type":"puck","team":"Red"},{"id":5,"type":"puck","team":"Red"},{"id":6,"type":"puck","team":"Blue"},{"id":7,"type":"puck","team":"Blue"},{"id":8,"type":"puck","team":"Blue"},{"id":9,"type":"puck","team":"Blue"},{"id":10,"type":"puck","team":"Blue"}],"frames":[{"t":0.020000457763671876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.04000091552734375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.060001373291015628,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.07999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.10000038146972656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.12000083923339844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.1400012969970703,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.15999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.18000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.20000076293945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.23999977111816407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.26000022888183596,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.2800006866455078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3000011444091797,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.31999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.39999961853027346,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4200000762939453,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4400005340576172,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.46000099182128909,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5599994659423828,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6000003814697266,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6200008392333984,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7000007629394531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7399997711181641,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7600002288818359,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7800006866455078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8000011444091797,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8999996185302734,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9200000762939453,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9400005340576172,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9600009918212891,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0599994659423829,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1000003814697266,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1200008392333985,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2199993133544922,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.239999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.260000228881836,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2800006866455079,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3799991607666016,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3999996185302735,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4200000762939454,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4400005340576172,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5599994659423829,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6000003814697266,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6200008392333985,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7199993133544922,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.739999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.760000228881836,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7800006866455079,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8799991607666016,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8999996185302735,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9200000762939454,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9400005340576172,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.020000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.039999008178711,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.059999465942383,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0799999237060549,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1000003814697267,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1999988555908205,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.219999313354492,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.239999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.260000228881836,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3799991607666017,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3999996185302736,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4200000762939455,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.440000534057617,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.479999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.520000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.539999008178711,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.559999465942383,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5799999237060549,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6000003814697267,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6999988555908205,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.719999313354492,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.739999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.760000228881836,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8599987030029299,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8799991607666017,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8999996185302736,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9200000762939455,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.979999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.019998550415039,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.039999008178711,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.059999465942383,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0799999237060549,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1000003814697267,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1999988555908205,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.219999313354492,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.239999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.260000228881836,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3599987030029299,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3799991607666017,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3999996185302736,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4200000762939455,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.479999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.519998550415039,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.539999008178711,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.559999465942383,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5799999237060549,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6799983978271486,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6999988555908205,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.719999313354492,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.739999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.759998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.839998245239258,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8599987030029299,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8799991607666017,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8999996185302736,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9200000762939455,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.979999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.019998550415039,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.039999008178711,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.059999465942383,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.079999923706055,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.119998931884766,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.1399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.159999847412109,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.179998397827148,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.19999885559082,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.219999313354492,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.239999771118164,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.259998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.339998245239258,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.35999870300293,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]}],"events":[]} \ No newline at end of file diff --git a/Assets/Logs/-1787763110.json.meta b/Assets/Logs/-1787763110.json.meta new file mode 100644 index 00000000..050062e4 --- /dev/null +++ b/Assets/Logs/-1787763110.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2cc4ee68f3294624c9898f706bab87a8 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763110.txt b/Assets/Logs/-1787763110.txt new file mode 100644 index 00000000..71fa540d --- /dev/null +++ b/Assets/Logs/-1787763110.txt @@ -0,0 +1,16 @@ +[8/26/2026 10:21:50 PM] ReplayRecorder started (practice) id -1787763110 with 11 entities +[8/26/2026 10:21:50 PM] Client connected +[8/26/2026 10:21:51 PM] Dedicated join: team assigned Blue isServer=True matchId=0 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/26/2026 10:21:51 PM] Dedicated join: skipping PATCH (matchId=0, secretEmpty=False) +[8/26/2026 10:21:51 PM] Selected team changed from Red to Blue +[8/26/2026 10:21:55 PM] Match: Blue forfeited by leave — Red wins +[8/26/2026 10:21:55 PM] ReplayRecorder wrote F:/Projects/Unity/soccar2d/Assets\Logs\-1787763110.json (218 frames, 0 events, duration 4.36s) +[8/26/2026 10:21:55 PM] Dedicated match: end winner=Red red_connected=False blue_connected=False red_score=0 blue_score=0 forfeit=True +[8/26/2026 10:21:55 PM] Mirror server: client disconnected (connId=0) +[8/26/2026 10:21:55 PM] Client disconnected +[8/26/2026 10:22:00 PM] Cupid settings updated +[8/26/2026 10:22:01 PM] Cupid settings updated +[8/26/2026 10:22:03 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/26/2026 10:22:10 PM] Invalid Room port +[8/26/2026 10:22:10 PM] Mirror server exception logging enabled +[8/26/2026 10:22:10 PM] Game started On localhost, tutorial mode enabled diff --git a/Assets/Logs/-1787763110.txt.meta b/Assets/Logs/-1787763110.txt.meta new file mode 100644 index 00000000..ba13b66f --- /dev/null +++ b/Assets/Logs/-1787763110.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: eafec47de336f534da962bda68ab7dfb +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763130.json b/Assets/Logs/-1787763130.json new file mode 100644 index 00000000..e0098cf7 --- /dev/null +++ b/Assets/Logs/-1787763130.json @@ -0,0 +1 @@ +{"version":1,"matchId":-1787763130,"isPractice":true,"fixedDeltaTime":0.019999992102384568,"duration":3.9599990844726564,"entities":[{"id":0,"type":"ball","team":""},{"id":1,"type":"puck","team":"Red"},{"id":2,"type":"puck","team":"Red"},{"id":3,"type":"puck","team":"Red"},{"id":4,"type":"puck","team":"Red"},{"id":5,"type":"puck","team":"Red"},{"id":6,"type":"puck","team":"Blue"},{"id":7,"type":"puck","team":"Blue"},{"id":8,"type":"puck","team":"Blue"},{"id":9,"type":"puck","team":"Blue"},{"id":10,"type":"puck","team":"Blue"}],"frames":[{"t":0.020000457763671876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.04000091552734375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.060001373291015628,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.07999801635742188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.09999847412109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.11999893188476563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.1399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.15999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.18000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.20000076293945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.23999786376953126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.2599983215332031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.2999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.31999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3999977111816406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4199981689453125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4399986267089844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.45999908447265627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5799980163574219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6199989318847656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7000007629394531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7399978637695313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7599983215332031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8999977111816406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9199981689453125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9399986267089844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0799980163574219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1199989318847657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2199974060058594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2399978637695313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2599983215332032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3799972534179688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3999977111816407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4199981689453126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4399986267089844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5799980163574219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6199989318847657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7199974060058594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7399978637695313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7599983215332032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8799972534179688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8999977111816407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9199981689453126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9399986267089844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.020000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.039997100830078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.079998016357422,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2199974060058595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.259998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3799972534179689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3999977111816408,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.479999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.520000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.539997100830078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.579998016357422,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7199974060058595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.759998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.859996795654297,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8799972534179689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8999977111816408,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.979999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0199966430664064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.039997100830078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.079998016357422,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.2199974060058595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.2399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.259998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.359996795654297,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3799972534179689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3999977111816408,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.479999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5199966430664064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.539997100830078,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.579998016357422,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6799964904785158,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.7199974060058595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.7399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.759998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.859996795654297,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8799972534179689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8999977111816408,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]}],"events":[]} \ No newline at end of file diff --git a/Assets/Logs/-1787763130.json.meta b/Assets/Logs/-1787763130.json.meta new file mode 100644 index 00000000..2827c0c7 --- /dev/null +++ b/Assets/Logs/-1787763130.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 62574c44b8b7522459dc1aebd641aa7f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763130.txt b/Assets/Logs/-1787763130.txt new file mode 100644 index 00000000..6c9b3594 --- /dev/null +++ b/Assets/Logs/-1787763130.txt @@ -0,0 +1,16 @@ +[8/26/2026 10:22:10 PM] ReplayRecorder started (practice) id -1787763130 with 11 entities +[8/26/2026 10:22:10 PM] Client connected +[8/26/2026 10:22:10 PM] Dedicated join: team assigned Blue isServer=True matchId=0 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/26/2026 10:22:10 PM] Dedicated join: skipping PATCH (matchId=0, secretEmpty=False) +[8/26/2026 10:22:10 PM] Selected team changed from Red to Blue +[8/26/2026 10:22:14 PM] Match: Blue forfeited by leave — Red wins +[8/26/2026 10:22:14 PM] ReplayRecorder wrote F:/Projects/Unity/soccar2d/Assets\Logs\-1787763130.json (198 frames, 0 events, duration 3.96s) +[8/26/2026 10:22:14 PM] Dedicated match: end winner=Red red_connected=False blue_connected=False red_score=0 blue_score=0 forfeit=True +[8/26/2026 10:22:14 PM] Mirror server: client disconnected (connId=0) +[8/26/2026 10:22:14 PM] Client disconnected +[8/26/2026 10:22:19 PM] Cupid settings updated +[8/26/2026 10:22:19 PM] Cupid settings updated +[8/26/2026 10:22:22 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/26/2026 10:22:29 PM] Invalid Room port +[8/26/2026 10:22:29 PM] Mirror server exception logging enabled +[8/26/2026 10:22:29 PM] Game started On localhost, tutorial mode enabled diff --git a/Assets/Logs/-1787763130.txt.meta b/Assets/Logs/-1787763130.txt.meta new file mode 100644 index 00000000..c1019995 --- /dev/null +++ b/Assets/Logs/-1787763130.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6e233967e946ccc4b921379b66b22740 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763149.json b/Assets/Logs/-1787763149.json new file mode 100644 index 00000000..b74f6c69 --- /dev/null +++ b/Assets/Logs/-1787763149.json @@ -0,0 +1 @@ +{"version":1,"matchId":-1787763149,"isPractice":true,"fixedDeltaTime":0.019999992102384568,"duration":3.420001983642578,"entities":[{"id":0,"type":"ball","team":""},{"id":1,"type":"puck","team":"Red"},{"id":2,"type":"puck","team":"Red"},{"id":3,"type":"puck","team":"Red"},{"id":4,"type":"puck","team":"Red"},{"id":5,"type":"puck","team":"Red"},{"id":6,"type":"puck","team":"Blue"},{"id":7,"type":"puck","team":"Blue"},{"id":8,"type":"puck","team":"Blue"},{"id":9,"type":"puck","team":"Blue"},{"id":10,"type":"puck","team":"Blue"}],"frames":[{"t":0.020000457763671876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.04000091552734375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.060001373291015628,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.0800018310546875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.10000228881835938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.12000274658203125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.1399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.15999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.18000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.20000076293945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.24000167846679688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.26000213623046877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.2800025939941406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3000030517578125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.31999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.40000152587890627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4200019836425781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4600028991699219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.4799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5600013732910156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5800018310546875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6000022888183594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6200027465820313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7000007629394531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7400016784667969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7800025939941406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9200019836425781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9799995422363281,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0600013732910157,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0800018310546876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1000022888183594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1200027465820313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2400016784667969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2800025939941407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4200019836425782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5600013732910157,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5800018310546876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6000022888183594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6199989318847657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7000007629394532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7400016784667969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7800025939941407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7999992370605469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8800010681152344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9200019836425782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.020000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0600013732910158,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1000022888183595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.200000762939453,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.240001678466797,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3800010681152345,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.420001983642578,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.479999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.520000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5600013732910158,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6000022888183595,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.700000762939453,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.740001678466797,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.799999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8800010681152345,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.920001983642578,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9399986267089845,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.979999542236328,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.020000457763672,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0600013732910158,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1199989318847658,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1599998474121095,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.200000762939453,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.240001678466797,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.259998321533203,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.299999237060547,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3400001525878908,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3800010681152345,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.420001983642578,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]}],"events":[]} \ No newline at end of file diff --git a/Assets/Logs/-1787763149.json.meta b/Assets/Logs/-1787763149.json.meta new file mode 100644 index 00000000..cd708a0d --- /dev/null +++ b/Assets/Logs/-1787763149.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5e168c91dfd19c748907045eef730143 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763149.txt b/Assets/Logs/-1787763149.txt new file mode 100644 index 00000000..2ba66807 --- /dev/null +++ b/Assets/Logs/-1787763149.txt @@ -0,0 +1,16 @@ +[8/26/2026 10:22:29 PM] ReplayRecorder started (practice) id -1787763149 with 11 entities +[8/26/2026 10:22:29 PM] Client connected +[8/26/2026 10:22:29 PM] Dedicated join: team assigned Blue isServer=True matchId=0 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/26/2026 10:22:29 PM] Dedicated join: skipping PATCH (matchId=0, secretEmpty=False) +[8/26/2026 10:22:29 PM] Selected team changed from Red to Blue +[8/26/2026 10:22:32 PM] Match: Blue forfeited by leave — Red wins +[8/26/2026 10:22:32 PM] ReplayRecorder wrote F:/Projects/Unity/soccar2d/Assets\Logs\-1787763149.json (171 frames, 0 events, duration 3.42s) +[8/26/2026 10:22:32 PM] Dedicated match: end winner=Red red_connected=False blue_connected=False red_score=0 blue_score=0 forfeit=True +[8/26/2026 10:22:32 PM] Mirror server: client disconnected (connId=0) +[8/26/2026 10:22:32 PM] Client disconnected +[8/26/2026 10:22:36 PM] Cupid settings updated +[8/26/2026 10:22:37 PM] Cupid settings updated +[8/26/2026 10:22:38 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/26/2026 10:22:45 PM] Invalid Room port +[8/26/2026 10:22:45 PM] Mirror server exception logging enabled +[8/26/2026 10:22:45 PM] Game started On localhost, tutorial mode enabled diff --git a/Assets/Logs/-1787763149.txt.meta b/Assets/Logs/-1787763149.txt.meta new file mode 100644 index 00000000..5de1a1bd --- /dev/null +++ b/Assets/Logs/-1787763149.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: afd7819d04d262d42a80b619146a0acc +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763165.json b/Assets/Logs/-1787763165.json new file mode 100644 index 00000000..2e820987 --- /dev/null +++ b/Assets/Logs/-1787763165.json @@ -0,0 +1 @@ +{"version":1,"matchId":-1787763165,"isPractice":true,"fixedDeltaTime":0.019999992102384568,"duration":12.099998474121094,"entities":[{"id":0,"type":"ball","team":""},{"id":1,"type":"puck","team":"Red"},{"id":2,"type":"puck","team":"Red"},{"id":3,"type":"puck","team":"Red"},{"id":4,"type":"puck","team":"Red"},{"id":5,"type":"puck","team":"Red"},{"id":6,"type":"puck","team":"Blue"},{"id":7,"type":"puck","team":"Blue"},{"id":8,"type":"puck","team":"Blue"},{"id":9,"type":"puck","team":"Blue"},{"id":10,"type":"puck","team":"Blue"}],"frames":[{"t":0.0200042724609375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.04000091552734375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.06000518798828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.0800018310546875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.100006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.12000274658203125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.1399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.18000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.20000457763671876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.2400054931640625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.26000213623046877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3000030517578125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.31999969482421877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.34000396728515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.3800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.40000152587890627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.42000579833984377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.45999908447265627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.48000335693359377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5200042724609375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5600051879882813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5800018310546875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.5999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6200027465820313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6399993896484375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7000045776367188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7400054931640625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.7600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8000030517578125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8400039672851563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8600006103515625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.8800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9200057983398438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":0.9800033569335938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0200042724609376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0600051879882813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0800018310546876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.0999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1200027465820313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.1800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2000045776367188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2400054931640626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.2600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3400039672851563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.3800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4199981689453126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.4800033569335938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5200042724609376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5400009155273438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5600051879882813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5800018310546876,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.5999984741210938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6200027465820313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6399993896484376,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.6800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7000045776367188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7400054931640626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.7600021362304688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8000030517578126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8400039672851563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8600006103515626,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.8800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9000015258789063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9199981689453126,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9599990844726563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":1.9800033569335938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0200042724609377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0600051879882814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.0999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1200027465820314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2000045776367189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.2600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3000030517578127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3400039672851564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.3800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.4800033569335939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5200042724609377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5600051879882814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.5999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6200027465820314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.6800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7000045776367189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.7600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8000030517578127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8400039672851564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.8800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":2.9800033569335939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0200042724609377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.0999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1200027465820314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.1800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.2000045776367189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.2399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.2600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3000030517578127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3400039672851564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.3800048828125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.4800033569335939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5200042724609377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5400009155273439,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5800018310546877,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.5999984741210939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6200027465820314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6399993896484377,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.6800003051757814,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.7000045776367189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.7399978637695314,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.7600021362304689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8000030517578127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8199996948242189,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8400039672851564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8600006103515627,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.8799972534179689,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9000015258789064,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9199981689453127,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9599990844726564,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":3.9800033569335939,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.0200042724609379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.0800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.120002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.1399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.180000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.200004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.239997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.3000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.340003967285156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.3600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.4199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.459999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.480003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.5200042724609379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.5800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.620002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.6399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.680000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.700004577636719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.739997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.8000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.840003967285156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.8600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.900001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.9199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.959999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":4.980003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.0200042724609379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.0800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.120002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.1399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.180000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.1999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.239997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.3000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.340003967285156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.3600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.4199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.459999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.480003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.5200042724609379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.5800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.620002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.6399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.680000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.6999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.739997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.8000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.840003967285156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.8600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.900001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.9199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.959999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":5.980003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.019996643066406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.0800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.120002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.1399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.180000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.1999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.239997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.3000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.340003967285156,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.3600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.4199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.459999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.480003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.519996643066406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.5800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.620002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.6399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.660003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.680000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.6999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.739997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.8000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.8600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.900001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.9199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.959999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":6.980003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.019996643066406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.0800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.120002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.1399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.160003662109375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.180000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.1999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.239997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.3000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.339996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.3600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.400001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.4199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.459999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.480003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.519996643066406,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.5800018310546879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.620002746582031,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.6399993896484379,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.659996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.680000305175781,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.6999969482421879,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.739997863769531,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.8000030517578129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.8600006103515629,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.900001525878906,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.9199981689453129,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.959999084472656,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":7.980003356933594,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.019996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.080001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.120002746582032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.139999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.159996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.180000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.239997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.300003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.339996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.360000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.419998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.459999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.479995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.519996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.580001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.620002746582032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.639999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.659996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.680000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.699996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.739997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.800003051757813,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.860000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.900001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.919998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.959999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":8.979995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.019996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.080001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.120002746582032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.139999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.159996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.180000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.239997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.299995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.339996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.360000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.419998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.459999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.479995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.519996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.580001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.620002746582032,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.639999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.659996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.680000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.699996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.739997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.860000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.900001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.919998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.94000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.959999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":9.979995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.019996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.080001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.1199951171875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.139999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.159996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.180000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.239997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.299995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.339996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.360000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.419998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.44000244140625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.459999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.479995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.519996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.580001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.6199951171875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.639999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.659996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.680000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.699996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.739997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.760002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.860000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.900001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.919998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.939994812011719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.959999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":10.979995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.019996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.080001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.1199951171875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.139999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.159996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.180000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.199996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.220001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.239997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.260002136230469,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.279998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.299995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.319999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.339996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.360000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.379997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.400001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.419998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.439994812011719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.459999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.479995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.5,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.519996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.540000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.55999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.580001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.599998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.6199951171875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.639999389648438,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.659996032714844,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.680000305175782,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.699996948242188,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.720001220703125,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.739997863769532,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.759994506835938,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.779998779296875,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.799995422363282,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.819999694824219,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.839996337890625,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.860000610351563,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.879997253417969,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.900001525878907,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.919998168945313,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.939994812011719,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.959999084472657,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":11.979995727539063,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.0,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.019996643066407,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.040000915527344,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.05999755859375,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.080001831054688,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"t":12.099998474121094,"x":[0.0,-0.6019999980926514,-0.5479999780654907,0.0,0.5479999780654907,0.6019999980926514,-0.6019999980926514,-0.5189999938011169,0.0,0.5479999780654907,0.6019999980926514],"y":[0.0,-1.5410000085830689,-3.937000036239624,-1.0019999742507935,-3.937000036239624,-1.5410000085830689,1.5410000085830689,3.9549999237060549,0.9900000095367432,3.9549999237060549,1.5410000085830689],"vx":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"vy":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]}],"events":[]} \ No newline at end of file diff --git a/Assets/Logs/-1787763165.json.meta b/Assets/Logs/-1787763165.json.meta new file mode 100644 index 00000000..a2a9e008 --- /dev/null +++ b/Assets/Logs/-1787763165.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f104f470c2a16344ea9b9aab39ff0f37 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763165.txt b/Assets/Logs/-1787763165.txt new file mode 100644 index 00000000..0b4847fc --- /dev/null +++ b/Assets/Logs/-1787763165.txt @@ -0,0 +1,16 @@ +[8/26/2026 10:22:45 PM] ReplayRecorder started (practice) id -1787763165 with 11 entities +[8/26/2026 10:22:45 PM] Client connected +[8/26/2026 10:22:45 PM] Dedicated join: team assigned Blue isServer=True matchId=0 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/26/2026 10:22:45 PM] Dedicated join: skipping PATCH (matchId=0, secretEmpty=False) +[8/26/2026 10:22:45 PM] Selected team changed from Red to Blue +[8/26/2026 10:22:57 PM] Match: Blue forfeited by leave — Red wins +[8/26/2026 10:22:57 PM] ReplayRecorder wrote F:/Projects/Unity/soccar2d/Assets\Logs\-1787763165.json (605 frames, 0 events, duration 12.10s) +[8/26/2026 10:22:57 PM] Dedicated match: end winner=Red red_connected=False blue_connected=False red_score=0 blue_score=0 forfeit=True +[8/26/2026 10:22:57 PM] Mirror server: client disconnected (connId=0) +[8/26/2026 10:22:57 PM] Client disconnected +[8/26/2026 10:23:02 PM] Cupid settings updated +[8/26/2026 10:23:02 PM] Cupid settings updated +[8/26/2026 10:23:05 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[8/26/2026 10:23:11 PM] Invalid Room port +[8/26/2026 10:23:11 PM] Mirror server exception logging enabled +[8/26/2026 10:23:11 PM] Game started On localhost, tutorial mode enabled diff --git a/Assets/Logs/-1787763165.txt.meta b/Assets/Logs/-1787763165.txt.meta new file mode 100644 index 00000000..897d7a80 --- /dev/null +++ b/Assets/Logs/-1787763165.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b6b634e5c0a824d47b49e89290032735 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763191.json b/Assets/Logs/-1787763191.json new file mode 100644 index 00000000..fdd33d62 --- /dev/null +++ b/Assets/Logs/-1787763191.json @@ -0,0 +1 @@ +{"version":1,"matchId":-1787763191,"isPractice":true,"fixedDeltaTime":0.019999992102384568,"duration":0.0,"entities":[{"id":0,"type":"ball","team":""},{"id":1,"type":"puck","team":"Red"},{"id":2,"type":"puck","team":"Red"},{"id":3,"type":"puck","team":"Red"},{"id":4,"type":"puck","team":"Red"},{"id":5,"type":"puck","team":"Red"},{"id":6,"type":"puck","team":"Blue"},{"id":7,"type":"puck","team":"Blue"},{"id":8,"type":"puck","team":"Blue"},{"id":9,"type":"puck","team":"Blue"},{"id":10,"type":"puck","team":"Blue"}],"frames":[],"events":[]} \ No newline at end of file diff --git a/Assets/Logs/-1787763191.json.meta b/Assets/Logs/-1787763191.json.meta new file mode 100644 index 00000000..52fd1e23 --- /dev/null +++ b/Assets/Logs/-1787763191.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d1dd94f034d5fcc48a72276d45f82c83 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/-1787763191.txt b/Assets/Logs/-1787763191.txt new file mode 100644 index 00000000..81464918 --- /dev/null +++ b/Assets/Logs/-1787763191.txt @@ -0,0 +1,8 @@ +[8/26/2026 10:23:11 PM] ReplayRecorder started (practice) id -1787763191 with 11 entities +[8/26/2026 10:23:11 PM] Client connected +[8/26/2026 10:23:11 PM] Dedicated join: team assigned Blue isServer=True matchId=0 secretEmpty=False redJoin=False blueJoin=False collected=False +[8/26/2026 10:23:11 PM] Dedicated join: skipping PATCH (matchId=0, secretEmpty=False) +[8/26/2026 10:23:11 PM] Dedicated match: Blue disconnected (order count=1) +[8/26/2026 10:23:11 PM] Mirror server: client disconnected (connId=0) +[8/26/2026 10:23:11 PM] Client disconnected +[8/26/2026 10:23:11 PM] ReplayRecorder wrote F:/Projects/Unity/soccar2d/Assets\Logs\-1787763191.json (0 frames, 0 events, duration 0.00s) diff --git a/Assets/Logs/-1787763191.txt.meta b/Assets/Logs/-1787763191.txt.meta new file mode 100644 index 00000000..a7945050 --- /dev/null +++ b/Assets/Logs/-1787763191.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 13d3b05348f90644b8f236f835efa4c2 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Logs/228.txt b/Assets/Logs/228.txt index 04ac591d..51765a2c 100644 --- a/Assets/Logs/228.txt +++ b/Assets/Logs/228.txt @@ -437,3 +437,14 @@ [8/18/2026 2:02:56 AM] Failed to fetch red and blue names, isServer? [8/18/2026 2:02:56 AM] Starting auto close watchdog [8/18/2026 2:02:56 AM] Active player connections: 0 +[8/27/2026 1:12:53 PM] Starting server at port 7777 +[8/27/2026 1:12:53 PM] Mirror server exception logging enabled +[8/27/2026 1:12:53 PM] Failed to fetch red and blue names, isServer? +[8/27/2026 1:12:53 PM] Starting auto close watchdog +[8/27/2026 1:12:53 PM] Active player connections: 0 +[8/27/2026 1:12:59 PM] Server will be closed due to no players in, 60 +[8/27/2026 1:42:51 PM] Starting server at port 7777 +[8/27/2026 1:42:51 PM] Mirror server exception logging enabled +[8/27/2026 1:42:51 PM] Failed to fetch red and blue names, isServer? +[8/27/2026 1:42:51 PM] Starting auto close watchdog +[8/27/2026 1:42:51 PM] Active player connections: 0 diff --git a/Assets/Prefabs/UI/LevelLoader.prefab b/Assets/Prefabs/UI/LevelLoader.prefab index d94044d8..91405f1e 100644 --- a/Assets/Prefabs/UI/LevelLoader.prefab +++ b/Assets/Prefabs/UI/LevelLoader.prefab @@ -578,7 +578,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &4426299922493186842 RectTransform: m_ObjectHideFlags: 0 @@ -595,7 +595,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -12, y: -301.3} + m_AnchoredPosition: {x: -12, y: -289} m_SizeDelta: {x: 396.3171, y: 206.1671} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5777954290886970586 @@ -619,7 +619,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.8349056, g: 0.93029827, b: 1, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 @@ -671,7 +671,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 351.29, y: 619.50073} + m_AnchoredPosition: {x: 291.99997, y: 619.50073} m_SizeDelta: {x: 356.21, y: 79.8881} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4299910807936819090 @@ -747,7 +747,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: -5110294184840258280, guid: b3993aed15d744d4bb390d5351cda423, type: 3} + m_Sprite: {fileID: 0} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -789,9 +789,9 @@ RectTransform: m_Children: [] m_Father: {fileID: 784446025213843339} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 349.8392, y: -415.53} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 349.8392, y: 714.47} m_SizeDelta: {x: 287.9087, y: 53.690674} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4680061499564276536 @@ -928,7 +928,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -351.29, y: 619.50073} + m_AnchoredPosition: {x: -297.8, y: 619.50073} m_SizeDelta: {x: 356.21, y: 79.8881} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2120176914018994436 @@ -1198,8 +1198,8 @@ MonoBehaviour: m_faceColor: serializedVersion: 2 rgba: 4294967295 - m_fontSize: 49.1 - m_fontSizeBase: 49.1 + m_fontSize: 46.1 + m_fontSizeBase: 46.1 m_fontWeight: 400 m_enableAutoSizing: 0 m_fontSizeMin: 18 @@ -1277,7 +1277,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -351.29, y: 619.50073} + m_AnchoredPosition: {x: -297.8, y: 619.50073} m_SizeDelta: {x: 356.21, y: 79.8881} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &588061042461009508 @@ -1456,9 +1456,9 @@ RectTransform: m_Children: [] m_Father: {fileID: 784446025213843339} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 1} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: -349.83923, y: -415.53} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -349.83923, y: 714.47} m_SizeDelta: {x: 287.9087, y: 53.690674} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4305625922513859524 @@ -1868,7 +1868,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -0.0000059605, y: 619.1} - m_SizeDelta: {x: 433.0019, y: 98.6273} + m_SizeDelta: {x: 359.3, y: 98.6273} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8725577243422270907 CanvasRenderer: @@ -2094,7 +2094,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -6.8129, y: 711.5879} - m_SizeDelta: {x: 370.1125, y: 86.3439} + m_SizeDelta: {x: 267.8, y: 86.3439} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2040376918808009174 CanvasRenderer: @@ -2244,7 +2244,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 351.29, y: 619.50073} + m_AnchoredPosition: {x: 292, y: 619.50073} m_SizeDelta: {x: 356.21, y: 79.8881} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &3873575104506013387 @@ -2470,7 +2470,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 8390053243822926539, guid: 511a187332d4a4d4db6f55f623e1de11, type: 3} + m_Sprite: {fileID: 8390053243822926539, guid: 5b969ed0d82676d4890df6c74fd6f3c4, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -2728,7 +2728,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 8390053243822926539, guid: 511a187332d4a4d4db6f55f623e1de11, type: 3} + m_Sprite: {fileID: 8390053243822926539, guid: 5b969ed0d82676d4890df6c74fd6f3c4, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -3625,7 +3625,7 @@ MonoBehaviour: p2_name: {fileID: 6139878670004169448} p1_l10: {fileID: 7658668847612786734} p2_l10: {fileID: 8415686484963452604} - redIcon: {fileID: 7194123030578827194, guid: 809c8d780dc80f14e80fd92c6e42ed71, type: 3} + redIcon: {fileID: 7609527126711406816, guid: 532bcbd7fabd63844ac75765ae25dcb9, type: 3} blueIcon: {fileID: 7609527126711406816, guid: 8d015c6e4a5ab8540814b06ae5f85980, type: 3} txtMiddle: {fileID: 2458004521057696282} txtRcPrize: {fileID: 8330661879995437874} @@ -3953,7 +3953,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 1.326294, y: -53.300316} + m_AnchoredPosition: {x: 1.326294, y: -53.300537} m_SizeDelta: {x: 82.232544, y: 5.79937} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8345919255487113005 @@ -3984,7 +3984,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: -7443756053782179069, guid: 0ec6ee71c3b91214284f88b794c2f1e7, type: 3} + m_Sprite: {fileID: -1955448553306655712, guid: b9f492da50bba6a4cae145945abc32e8, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 diff --git a/Assets/Scenes/Game.unity b/Assets/Scenes/Game.unity index 49e7e9b1..5158511f 100644 --- a/Assets/Scenes/Game.unity +++ b/Assets/Scenes/Game.unity @@ -23699,7 +23699,7 @@ MonoBehaviour: ballMoveTime: 5 puckDragClampMax: 5 puckDragMinClamp: 0.75 - puckSelectMaxDistance: 2 + puckSelectMaxDistance: 1 fieldSize: 3.25 cameraStretchBoundaryExponent: 2.5 redScore: 0 diff --git a/Assets/Scenes/Intro.unity b/Assets/Scenes/Intro.unity index 8d4fa1ac..b1d23882 100644 --- a/Assets/Scenes/Intro.unity +++ b/Assets/Scenes/Intro.unity @@ -9470,50 +9470,10 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 2625666949678814403, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_IsActive + - target: {fileID: 2458004521057696282, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} + propertyPath: m_enableAutoSizing value: 1 objectReference: {fileID: 0} - - target: {fileID: 2855071711224960201, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3027208764083308819, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_IsActive - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 3465182817620600145, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3465182817620600145, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3465182817620600145, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchoredPosition.y - value: 714.47 - objectReference: {fileID: 0} - - target: {fileID: 3697438882816933721, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: redIcon - value: - objectReference: {fileID: 7609527126711406816, guid: 532bcbd7fabd63844ac75765ae25dcb9, type: 3} - - target: {fileID: 3749771552368919126, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: 0} - - target: {fileID: 4426299922493186842, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchoredPosition.y - value: -289 - objectReference: {fileID: 0} - - target: {fileID: 4545260003495756882, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 5669134292471989017, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: 8390053243822926539, guid: 5b969ed0d82676d4890df6c74fd6f3c4, type: 3} - target: {fileID: 6417757714012981459, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} propertyPath: m_Pivot.x value: 0 @@ -9594,54 +9554,22 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 6519676147968598479, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Color.b - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6519676147968598479, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Color.g - value: 0.93029827 - objectReference: {fileID: 0} - - target: {fileID: 6519676147968598479, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Color.r - value: 0.8349056 - objectReference: {fileID: 0} - target: {fileID: 6610414990034145927, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} propertyPath: m_IsActive value: 0 objectReference: {fileID: 0} - - target: {fileID: 6864964370409994597, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: 8390053243822926539, guid: 5b969ed0d82676d4890df6c74fd6f3c4, type: 3} - - target: {fileID: 8202105634251418107, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchorMax.y - value: 0.5 + - target: {fileID: 7631130990449649942, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} + propertyPath: m_SizeDelta.y + value: -16.68 objectReference: {fileID: 0} - - target: {fileID: 8202105634251418107, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchorMin.y - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 8202105634251418107, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} + - target: {fileID: 7631130990449649942, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} propertyPath: m_AnchoredPosition.y - value: 714.47 + value: 5.16 objectReference: {fileID: 0} - - target: {fileID: 8269240558470408597, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_Sprite - value: - objectReference: {fileID: -1955448553306655712, guid: b9f492da50bba6a4cae145945abc32e8, type: 3} - target: {fileID: 8578419198713715619, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} propertyPath: m_Name value: LevelLoader objectReference: {fileID: 0} - - target: {fileID: 8578419198713715619, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 8986273419714486717, guid: 169bd8967120a614da3d7b0e9c71557c, type: 3} - propertyPath: m_AnchoredPosition.y - value: -53.300537 - objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] diff --git a/Assets/Scenes/MainMenu.unity b/Assets/Scenes/MainMenu.unity index 469102ea..60dd67cf 100644 --- a/Assets/Scenes/MainMenu.unity +++ b/Assets/Scenes/MainMenu.unity @@ -8135,7 +8135,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &840893991 RectTransform: m_ObjectHideFlags: 0 @@ -9765,7 +9765,7 @@ MonoBehaviour: m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 - m_fontStyle: 0 + m_fontStyle: 16 m_HorizontalAlignment: 1 m_VerticalAlignment: 256 m_textAlignment: 65535 @@ -10114,7 +10114,7 @@ MonoBehaviour: m_margin: {x: 0, y: 0, z: 0, w: 0} m_isUsingLegacyAnimationComponent: 0 m_isVolumetricText: 0 - m_hasFontAssetChanged: 1 + m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!222 &991656204 @@ -16702,8 +16702,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -314.68228, y: -213.59998} - m_SizeDelta: {x: 134.3185, y: 74.7677} + m_AnchoredPosition: {x: -357.5037, y: -220.18799} + m_SizeDelta: {x: 157.3761, y: 87.9436} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1636876511 MonoBehaviour: @@ -19187,7 +19187,7 @@ MonoBehaviour: m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 - m_fontStyle: 0 + m_fontStyle: 16 m_HorizontalAlignment: 1 m_VerticalAlignment: 256 m_textAlignment: 65535 diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 4170c56f..c8837cd3 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -16,15 +16,43 @@ public class GameManager : NetworkBehaviour public static MatchmadePlayer BluePlayer { get; set; } /// Coin units from matchmaker rc_prize; used for in-game prize UI. public static int MatchRcPrizeCoins { get; set; } + + /// Clears match roster/team statics that survive scene unload (logout). + public static void ClearMatchSession() + { + MyTeam = default; + RedPlayer = null; + BluePlayer = null; + MatchRcPrizeCoins = 0; + RedFinishedMatch = true; + BlueFinishedMatch = true; + MatchWinningTeam = default; + MatchEndedByForfeit = false; + } + /// Participation CC amount shown on game over. Actual credit is decided by the winner PATCH. public const int ParticipationCcAmount = 100; - /// Server-reported: red was still connected when the match ended (eligible for participation CC). + /// Server-reported: red was still connected when the match ended. Not inferred from winner. public static bool RedFinishedMatch { get; private set; } = true; - /// Server-reported: blue was still connected when the match ended (eligible for participation CC). + /// Server-reported: blue was still connected when the match ended. Not inferred from winner. public static bool BlueFinishedMatch { get; private set; } = true; - /// Local player stayed connected through match end and should see +CC on game over. - public static bool LocalPlayerEarnedParticipationCc => - MyTeam == Team.Blue ? BlueFinishedMatch : RedFinishedMatch; + /// Winning side at settle. Used with for game-over CC display. + public static Team MatchWinningTeam { get; private set; } + /// True for leave, disconnect, last-disconnect, and skip/auto-forfeit. Not shown in player UI. + public static bool MatchEndedByForfeit { get; private set; } + /// Local player should see +CC on game over: connected, and not the forfeit loser. + public static bool LocalPlayerEarnedParticipationCc + { + get + { + bool connected = MyTeam == Team.Blue ? BlueFinishedMatch : RedFinishedMatch; + if (!connected) + return false; + if (!MatchEndedByForfeit) + return true; + return MyTeam == MatchWinningTeam; + } + } /// Set by dedicated server startup (e.g. CupidConnector parsing -matchId). PATCH is skipped if id ≤ 0 or secret is empty. public static int DedicatedMatchId { get; private set; } /// Sent as X-Dedicated-Server-Secret. From -dedicatedSecret arg or DEDICATED_SERVER_SECRET env. @@ -437,7 +465,7 @@ public class GameManager : NetworkBehaviour // Both gone → last player who disconnected wins immediately. if (!_redConnected && !_blueConnected && _disconnectOrder.Count > 0) - EndMatch(_disconnectOrder[_disconnectOrder.Count - 1]); + EndMatch(_disconnectOrder[_disconnectOrder.Count - 1], forfeit: true); } IEnumerator CoDedicatedMatchJoinPatch(string baseUrl, int matchId, string secret, string json, bool collectAttempt) @@ -578,12 +606,12 @@ public class GameManager : NetworkBehaviour } } - public IEnumerator DedicatedMatchPatchWinner(string baseUrl, int matchId, string secret, string winnerLower, bool redConnected, bool blueConnected) + public IEnumerator DedicatedMatchPatchWinner(string baseUrl, int matchId, string secret, string winnerLower, bool redConnected, bool blueConnected, int redScore, int blueScore, bool forfeit) { if (matchId <= 0 || string.IsNullOrEmpty(secret)) yield break; - string jsonBody = DedicatedMatschInternalApi.BuildWinnerPatchJson(winnerLower, redConnected, blueConnected); + string jsonBody = DedicatedMatschInternalApi.BuildWinnerPatchJson(winnerLower, redConnected, blueConnected, redScore, blueScore, forfeit); using (var req = DedicatedMatschInternalApi.BuildWinnerRequest(baseUrl, matchId, secret, jsonBody)) { yield return req.SendWebRequest(); @@ -591,7 +619,7 @@ public class GameManager : NetworkBehaviour } } - void ReportDedicatedMatchGameOver(Team winningTeam, bool redConnected, bool blueConnected) + void ReportDedicatedMatchGameOver(Team winningTeam, bool redConnected, bool blueConnected, bool forfeit) { if (!isServer || DedicatedMatchId <= 0 || string.IsNullOrEmpty(DedicatedMatchSecret) || _winnerSettled) return; @@ -601,30 +629,32 @@ public class GameManager : NetworkBehaviour return; } _winnerSettled = true; - StartCoroutine(CoReportDedicatedMatchGameOver(winningTeam, redConnected, blueConnected)); + StartCoroutine(CoReportDedicatedMatchGameOver(winningTeam, redConnected, blueConnected, forfeit)); } - IEnumerator CoReportDedicatedMatchGameOver(Team winningTeam, bool redConnected, bool blueConnected) + IEnumerator CoReportDedicatedMatchGameOver(Team winningTeam, bool redConnected, bool blueConnected, bool forfeit) { yield return DedicatedMatchPatch(DedicatedInternalApiBase, DedicatedMatchId, DedicatedMatchSecret, "{\"status\":3}"); string winner = winningTeam == Team.Red ? "red" : "blue"; - yield return DedicatedMatchPatchWinner(DedicatedInternalApiBase, DedicatedMatchId, DedicatedMatchSecret, winner, redConnected, blueConnected); + yield return DedicatedMatchPatchWinner(DedicatedInternalApiBase, DedicatedMatchId, DedicatedMatchSecret, winner, redConnected, blueConnected, redScore, blueScore, forfeit); } /// Score or forfeit end: latch game over, report winner if escrowed, notify clients. - void EndMatch(Team winningTeam) + void EndMatch(Team winningTeam, bool forfeit) { if (!isServer || isGameEnded) return; isGameEnded = true; ReplayRecorder.StopAndFlush(); + if (GameTutorialManager.tutorialModeEnabled) + GameTutorialManager.RecordCpuL10Result(winningTeam != MyTeam); bool redConnected = IsSideConnectedForParticipation(Team.Red); bool blueConnected = IsSideConnectedForParticipation(Team.Blue); - Logger.Log($"Dedicated match: end winner={winningTeam} red_connected={redConnected} blue_connected={blueConnected}"); - ApplyParticipationCcFlags(redConnected, blueConnected); - ReportDedicatedMatchGameOver(winningTeam, redConnected, blueConnected); - RpcGameOver(winningTeam, redConnected, blueConnected); + Logger.Log($"Dedicated match: end winner={winningTeam} red_connected={redConnected} blue_connected={blueConnected} red_score={redScore} blue_score={blueScore} forfeit={forfeit}"); + ApplyParticipationCcFlags(redConnected, blueConnected, winningTeam, forfeit); + ReportDedicatedMatchGameOver(winningTeam, redConnected, blueConnected, forfeit); + RpcGameOver(winningTeam, redConnected, blueConnected, forfeit); gameOver(winningTeam); } @@ -665,10 +695,12 @@ public class GameManager : NetworkBehaviour return false; } - static void ApplyParticipationCcFlags(bool redConnected, bool blueConnected) + static void ApplyParticipationCcFlags(bool redConnected, bool blueConnected, Team winningTeam, bool forfeit) { RedFinishedMatch = redConnected; BlueFinishedMatch = blueConnected; + MatchWinningTeam = winningTeam; + MatchEndedByForfeit = forfeit; } void HandleDisconnectForfeitTimers() @@ -681,14 +713,14 @@ public class GameManager : NetworkBehaviour if (!_redConnected && _blueConnected && _redForfeitDeadline > 0f && now >= _redForfeitDeadline) { Logger.Log("Dedicated match: red forfeit grace expired — blue wins"); - EndMatch(Team.Blue); + EndMatch(Team.Blue, forfeit: true); return; } if (!_blueConnected && _redConnected && _blueForfeitDeadline > 0f && now >= _blueForfeitDeadline) { Logger.Log("Dedicated match: blue forfeit grace expired — red wins"); - EndMatch(Team.Red); + EndMatch(Team.Red, forfeit: true); return; } @@ -699,7 +731,7 @@ public class GameManager : NetworkBehaviour { Team winner = _disconnectOrder[_disconnectOrder.Count - 1]; Logger.Log("Dedicated match: both forfeit graces expired — last disconnect wins: " + winner); - EndMatch(winner); + EndMatch(winner, forfeit: true); } } @@ -727,9 +759,10 @@ public class GameManager : NetworkBehaviour bool blueConnected = IsSideConnectedForParticipation(Team.Blue); _winnerSettled = true; isGameEnded = true; - ApplyParticipationCcFlags(redConnected, blueConnected); + ApplyParticipationCcFlags(redConnected, blueConnected, winningTeam, forfeit: true); Logger.Log("Dedicated match: blocking winner settle before shutdown → " + winningTeam - + " red_connected=" + redConnected + " blue_connected=" + blueConnected); + + " red_connected=" + redConnected + " blue_connected=" + blueConnected + + " red_score=" + redScore + " blue_score=" + blueScore + " forfeit=true"); using (var statusReq = DedicatedMatschInternalApi.BuildRequest( DedicatedInternalApiBase, DedicatedMatchId, DedicatedMatchSecret, "{\"status\":3}")) @@ -741,7 +774,7 @@ public class GameManager : NetworkBehaviour } string winner = winningTeam == Team.Red ? "red" : "blue"; - string jsonBody = DedicatedMatschInternalApi.BuildWinnerPatchJson(winner, redConnected, blueConnected); + string jsonBody = DedicatedMatschInternalApi.BuildWinnerPatchJson(winner, redConnected, blueConnected, redScore, blueScore, forfeit: true); using (var winReq = DedicatedMatschInternalApi.BuildWinnerRequest( DedicatedInternalApiBase, DedicatedMatchId, DedicatedMatchSecret, jsonBody)) { @@ -1100,7 +1133,7 @@ public class GameManager : NetworkBehaviour Team winner = GetOpposingTeam(skippingTeam); Logger.Log($"Match: {skippingTeam} forfeited for skipping two consecutive turns — {winner} wins"); RpcHideSkipForfeitWarning(skippingTeam); - EndMatch(winner); + EndMatch(winner, forfeit: true); return; } @@ -1294,9 +1327,9 @@ public class GameManager : NetworkBehaviour if(blueScore >= 3){ - EndMatch(Team.Blue); + EndMatch(Team.Blue, forfeit: false); }else if(redScore >= 3){ - EndMatch(Team.Red); + EndMatch(Team.Red, forfeit: false); }else{ StartCoroutine(CoroutineOnGoal(team)); } @@ -1344,8 +1377,8 @@ public class GameManager : NetworkBehaviour } [ClientRpc] - void RpcGameOver(Team team, bool redConnected, bool blueConnected){ - ApplyParticipationCcFlags(redConnected, blueConnected); + void RpcGameOver(Team team, bool redConnected, bool blueConnected, bool forfeit){ + ApplyParticipationCcFlags(redConnected, blueConnected, team, forfeit); gameOver(team); } @@ -1488,7 +1521,7 @@ public class GameManager : NetworkBehaviour Team winner = GetOpposingTeam(leavingTeam); Logger.Log($"Match: {leavingTeam} forfeited by leave — {winner} wins"); - EndMatch(winner); + EndMatch(winner, forfeit: true); } IEnumerator CoLeaveIfThirdPlayer() @@ -1522,17 +1555,23 @@ public class GameManager : NetworkBehaviour if (my == null || opp == null) yield break; + if (GameTutorialManager.tutorialModeEnabled) + GameTutorialManager.ApplyCpuL10(opp); + string baseUrl = (DedicatedInternalApiBase ?? "").TrimEnd('/'); if (string.IsNullOrEmpty(baseUrl)) + { + LevelLoadManager.myPlayer = my; + LevelLoadManager.opponentPlayer = opp; yield break; + } if (my.UserId > 0){ yield return CoFetchPlayerL10Apply(baseUrl, my); } - if (opp.UserId > 0 && opp.UserId != my.UserId){ + if (!GameTutorialManager.tutorialModeEnabled && opp.UserId > 0 && opp.UserId != my.UserId){ yield return CoFetchPlayerL10Apply(baseUrl, opp); } - LevelLoadManager.myPlayer = my; LevelLoadManager.opponentPlayer = opp; @@ -1645,13 +1684,16 @@ static class DedicatedMatschInternalApi return BuildPatchJson(url, secret, jsonBody); } - public static string BuildWinnerPatchJson(string winnerLower, bool redConnected, bool blueConnected) + public static string BuildWinnerPatchJson(string winnerLower, bool redConnected, bool blueConnected, int redScore, int blueScore, bool forfeit) { return JsonUtility.ToJson(new DedicatedWinnerPatchRequest { winner = winnerLower, red_connected = redConnected, - blue_connected = blueConnected + blue_connected = blueConnected, + red_score = redScore, + blue_score = blueScore, + forfeit = forfeit }); } @@ -1709,7 +1751,10 @@ static class DedicatedMatschInternalApi Logger.Log("Dedicated winner PATCH economy: rc_prize=" + parsed.economy.rc_prize + " participant_cc=" + parsed.economy.participant_cc + " cc_awarded_red=" + parsed.economy.cc_awarded_red - + " cc_awarded_blue=" + parsed.economy.cc_awarded_blue); + + " cc_awarded_blue=" + parsed.economy.cc_awarded_blue + + " mmr_delta=" + parsed.mmr_delta + + " forfeit=" + parsed.forfeit + + " already_settled=" + parsed.already_settled); } } catch (Exception e) @@ -1748,6 +1793,9 @@ class DedicatedWinnerPatchRequest public string winner; public bool red_connected; public bool blue_connected; + public int red_score; + public int blue_score; + public bool forfeit; } [Serializable] @@ -1766,7 +1814,10 @@ class DedicatedWinnerPatchResponse public bool ok; public int id; public int winner_id; + public bool already_settled; public DedicatedWinnerPatchEconomy economy; + public int mmr_delta; + public bool forfeit; } [Serializable] diff --git a/Assets/Scripts/GameOverCanvas.cs b/Assets/Scripts/GameOverCanvas.cs index c5edae05..9bf27a2d 100644 --- a/Assets/Scripts/GameOverCanvas.cs +++ b/Assets/Scripts/GameOverCanvas.cs @@ -56,7 +56,7 @@ public class GameOverCanvas : MonoBehaviour public Button btnBetLimitAdjustCancel; const string PersonalBetLimitPrefsKey = "WalkInvest.PersonalBetLimit"; - const int BetLimitMin = 2; + const int BetLimitMin = 8; const int BetLimitMax = 500; const int BetLimitUnlimited = 500; @@ -455,7 +455,7 @@ public class GameOverCanvas : MonoBehaviour yield return new WaitForSeconds(scaleTime * 0.5f); - //Rewards — participation CC only if this client stayed connected through match end + // Rewards — +CC only if this client was actually awarded it (connected non-forfeit, or forfeit winner) float ccReward = GameTutorialManager.tutorialModeEnabled || !GameManager.LocalPlayerEarnedParticipationCc ? 0f : GameManager.ParticipationCcAmount; diff --git a/Assets/Scripts/GameTutorialManager.cs b/Assets/Scripts/GameTutorialManager.cs index 7452f5e5..7bca6714 100644 --- a/Assets/Scripts/GameTutorialManager.cs +++ b/Assets/Scripts/GameTutorialManager.cs @@ -10,6 +10,8 @@ public class GameTutorialManager : MonoBehaviour { public const string CpuOpponentName = "CPU"; public const string DefaultGameSceneName = "Game"; + public const string CpuL10PrefsKey = "practice_cpu_l10"; + const int L10Window = 10; public static bool tutorialModeTrigger = false; public bool isTutorial = false; @@ -241,14 +243,58 @@ public class GameTutorialManager : MonoBehaviour public static MatchmadePlayer CreateCpuOpponent() { + GetCpuL10(out int wins, out int losses); return new MatchmadePlayer { Name = CpuOpponentName, - l10_wins = 10, - l10_losses = 0 + l10_wins = wins, + l10_losses = losses }; } + public static void GetCpuL10(out int wins, out int losses) + { + CountL10(PlayerPrefs.GetString(CpuL10PrefsKey, string.Empty), out wins, out losses); + } + + public static void ApplyCpuL10(MatchmadePlayer cpu) + { + if (cpu == null) + return; + GetCpuL10(out int wins, out int losses); + cpu.l10_wins = wins; + cpu.l10_losses = losses; + } + + /// + /// Records one practice result from the CPU's perspective (rolling last 10). + /// Cleared on logout because calls PlayerPrefs.DeleteAll. + /// + public static void RecordCpuL10Result(bool cpuWon) + { + string history = PlayerPrefs.GetString(CpuL10PrefsKey, string.Empty) ?? string.Empty; + history += cpuWon ? 'W' : 'L'; + if (history.Length > L10Window) + history = history.Substring(history.Length - L10Window); + PlayerPrefs.SetString(CpuL10PrefsKey, history); + PlayerPrefs.Save(); + } + + static void CountL10(string history, out int wins, out int losses) + { + wins = 0; + losses = 0; + if (string.IsNullOrEmpty(history)) + return; + for (int i = 0; i < history.Length; i++) + { + if (history[i] == 'W') + wins++; + else if (history[i] == 'L') + losses++; + } + } + public static MatchmadePlayer CreateMyPlayerFromUser(UserData user) { return new MatchmadePlayer diff --git a/Assets/Scripts/LoginManager.cs b/Assets/Scripts/LoginManager.cs index 81c77e3c..2c6dad44 100644 --- a/Assets/Scripts/LoginManager.cs +++ b/Assets/Scripts/LoginManager.cs @@ -110,16 +110,20 @@ public class LoginManager : MonoBehaviour void Awake() { HideServerMessagePanels(); - AuthToken = PlayerPrefs.GetString(PlayerPrefsAuthKey, ""); - if(instance !=null){ - Destroy(gameObject); - return; + if (instance != null && instance != this) + { + instance.StopKeepalive(); + SceneManager.sceneLoaded -= instance.OnSceneLoaded; + Destroy(instance.gameObject); } + instance = this; DontDestroyOnLoad(gameObject); SceneManager.sceneLoaded += OnSceneLoaded; + AuthToken = PlayerPrefs.GetString(PlayerPrefsAuthKey, ""); + if (string.IsNullOrEmpty(AuthToken)) ClearLocalUserProfile(); #if !UNITY_EDITOR @@ -248,10 +252,23 @@ public class LoginManager : MonoBehaviour AuthToken = ""; ClearLocalUserProfile(); ClearMatchYourTeam(); + OnUserDataUpdated = null; + Cupid.ClearSession(); + CupidLobby.ClearUsername(); + GameManager.ClearMatchSession(); + NetPlayer.RedPlayer = null; + NetPlayer.BluePlayer = null; PlayerPrefs.DeleteAll(); PlayerPrefs.Save(); } + /// Full logout, then reload the login scene so a fresh can bind UI. + public static void LogoutAndReturnToLogin() + { + Logout(); + SceneManager.LoadScene(0); + } + static void ProceedToMainMenu() { if (LevelLoadManager.instance != null) @@ -419,7 +436,7 @@ public class LoginManager : MonoBehaviour if (request.result != UnityWebRequest.Result.Success && request.result != UnityWebRequest.Result.ProtocolError) { - ShowAuthMessage(string.IsNullOrEmpty(request.error) ? "Network error" : request.error); + ShowAuthMessage("Network Error, Please try again."); SetBusy(false); yield break; } @@ -457,7 +474,7 @@ public class LoginManager : MonoBehaviour } else { - ShowAuthMessage(string.IsNullOrEmpty(resp.error) ? "Request failed" : resp.error); + ShowAuthMessage("Login failed. Please try again."); } } @@ -878,11 +895,10 @@ public class LoginManager : MonoBehaviour void OnDestroy() { + SceneManager.sceneLoaded -= OnSceneLoaded; + StopKeepalive(); if (instance == this) - { - SceneManager.sceneLoaded -= OnSceneLoaded; - StopKeepalive(); - } + instance = null; } void StartKeepalive() @@ -979,14 +995,9 @@ public class LoginManager : MonoBehaviour if (_handlingKeepaliveUnauthorized) return; _handlingKeepaliveUnauthorized = true; - InvalidateStoredSession(); SetBusy(false); - ShowAuthMessage(string.IsNullOrEmpty(message) ? "Session expired. Please sign in again." : message); - - Scene active = SceneManager.GetActiveScene(); - if (active.buildIndex != 0 && active.name != "Intro") - SceneManager.LoadScene(0); + LogoutAndReturnToLogin(); } } diff --git a/Assets/Scripts/MainMenuManager.cs b/Assets/Scripts/MainMenuManager.cs index f270f2ee..043866ae 100644 --- a/Assets/Scripts/MainMenuManager.cs +++ b/Assets/Scripts/MainMenuManager.cs @@ -108,7 +108,11 @@ public class MainMenuManager : MonoBehaviour inputCryptoAddress.onValueChanged.AddListener(OnCryptoAddressChanged); } - UpdateWithdrawalStatus(); + if (txtWithdrawStatus != null) + txtWithdrawStatus.gameObject.SetActive(false); + + if (btnWithdrawal != null) + btnWithdrawal.onClick.AddListener(OnWithdrawalPressed); if (btnPaste != null) btnPaste.onClick.AddListener(OnPasteFromClipboard); @@ -138,6 +142,8 @@ public class MainMenuManager : MonoBehaviour btnTutorial.onClick.RemoveListener(OnPlayTutorial); if (btnLogout != null) btnLogout.onClick.RemoveListener(OnLogout); + if (btnWithdrawal != null) + btnWithdrawal.onClick.RemoveListener(OnWithdrawalPressed); } void OnLogout() @@ -160,8 +166,7 @@ public class MainMenuManager : MonoBehaviour void ConfirmLogout() { - LoginManager.Logout(); - SceneManager.LoadScene(0); + LoginManager.LogoutAndReturnToLogin(); } void OnToggleSfx(bool isOn) @@ -234,33 +239,52 @@ public class MainMenuManager : MonoBehaviour { PlayerPrefs.SetString(CryptoAddressPrefsKey, value ?? string.Empty); PlayerPrefs.Save(); - UpdateWithdrawalStatus(); } - void UpdateWithdrawalStatus(UserData user = null) + void OnWithdrawalPressed() { - if (txtWithdrawStatus == null) - return; - UserData u = user ?? LoginManager.CurrentUser; - if (u == null) + UserData user = LoginManager.CurrentUser; + if (user == null) + { + ShowWithdrawalMessage("Could not load your profile. Try again.", false); return; + } if (inputCryptoAddress != null && string.IsNullOrWhiteSpace(inputCryptoAddress.text)) { - txtWithdrawStatus.text = "Enter a valid wallet address to withdraw safely."; + ShowWithdrawalMessage("Enter a valid wallet address to withdraw safely.", true); return; } - if (u.rc < MinimumWithdrawalRcCoins) + + if (user.rc < MinimumWithdrawalRcCoins) { - txtWithdrawStatus.text = "Your RC balance is below the minimum withdrawal amount ($20 USD / 20.0 RC)."; + ShowWithdrawalMessage("Your RC balance is below the minimum withdrawal amount ($20 USD / 20.0 RC).", false); return; } - if (u.cc < WithdrawalFeeCc) + + if (user.cc < WithdrawalFeeCc) { - txtWithdrawStatus.text = "Withdrawal costs 500 CC. Your CC balance is below 500 CC."; + ShowWithdrawalMessage("Withdrawal costs 500 CC. Your CC balance is below 500 CC.", false); return; } - txtWithdrawStatus.text = string.Empty; + } + + void ShowWithdrawalMessage(string message, bool basic) + { + if (MessageBoxDialog.IsAvailable) + { + if (basic) + MessageBoxDialog.ShowBasic(message); + else + MessageBoxDialog.Show("Can't withdraw", message); + return; + } + + if (txtWithdrawStatus != null) + { + txtWithdrawStatus.gameObject.SetActive(true); + txtWithdrawStatus.text = message; + } } void OnPasteFromClipboard() @@ -317,8 +341,6 @@ public class MainMenuManager : MonoBehaviour rcPlayText.text = ""; if (btnPlay != null) btnPlay.interactable = true; - - UpdateWithdrawalStatus(user); } /// Called by so the loading overlay stays until matchmaker settings are refreshed. @@ -422,7 +444,6 @@ public class MainMenuManager : MonoBehaviour dummyBuyScreen.SetActive(false); withdrawalScreen.SetActive(true); settingsScreen.SetActive(false); - UpdateWithdrawalStatus(); } public void ShowSettingsScreen(){ diff --git a/Assets/Scripts/TutorialManagerMainMenu.cs b/Assets/Scripts/TutorialManagerMainMenu.cs index ed22cdf6..c152a94d 100644 --- a/Assets/Scripts/TutorialManagerMainMenu.cs +++ b/Assets/Scripts/TutorialManagerMainMenu.cs @@ -50,19 +50,21 @@ public class TutorialManagerMainMenu : MonoBehaviour if(!forceShow){ if(PlayerPrefs.HasKey(TUTORIAL_PREF_KEY)){ tutorialPanel.SetActive(false); + Debug.Log("Tutorial pref key is available, stopping;"); return; } if(LoginManager.CurrentUser.rc > 0){ tutorialPanel.SetActive(false); + Debug.Log("User has rc, stopping;"); return; } } tutorialPanel.SetActive(true); screen1.SetActive(true); - - + PlayerPrefs.SetInt(TUTORIAL_PREF_KEY, 1); + PlayerPrefs.Save(); } void OnNext1(){ diff --git a/Log.txt b/Log.txt new file mode 100644 index 00000000..0e24710a --- /dev/null +++ b/Log.txt @@ -0,0 +1,8 @@ +Logger initiated at 9/6/2026 9:17:41 PM + +[9/6/2026 9:17:41 PM] Cupid settings updated +[9/6/2026 9:17:42 PM] Cupid settings updated +[9/6/2026 9:17:47 PM] Configured dedicated match reporting for match id 0 with secret 38516e39d3406225b7c3015a66e5d25c54e9b2024c0755212122bdcea3e3a328 and internal api base https://kkapi.playpoolstudios.com +[9/6/2026 9:17:53 PM] Invalid Room port +[9/6/2026 9:17:53 PM] Mirror server exception logging enabled +[9/6/2026 9:17:53 PM] Game started On localhost, tutorial mode enabled diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 4d9e5c2c..68beff66 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -141,7 +141,7 @@ PlayerSettings: loadStoreDebugModeEnabled: 0 visionOSBundleVersion: 1.0 tvOSBundleVersion: 1.0 - bundleVersion: 1.34 + bundleVersion: 1.37 preloadedAssets: - {fileID: -944628639613478452, guid: 2bcd2660ca9b64942af0de543d8d7100, type: 3} metroInputSource: 0